home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / Info.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  1.5 KB  |  63 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _INFO_
  4. #define _INFO_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //==============================================================================
  11. // Theory of Operation
  12. //==============================================================================
  13.  
  14. /*
  15. */
  16.  
  17. //==============================================================================
  18. // Classes defined in this interface
  19. //==============================================================================
  20.  
  21. interface  ODInfo;
  22.  
  23. //==============================================================================
  24. // Classes used by this interface
  25. //==============================================================================
  26.  
  27. interface ODFacet;
  28. interface ODSession;
  29.  
  30. //=====================================================================================
  31. // Implementation Types
  32. //=====================================================================================
  33.  
  34.  
  35. //==============================================================================
  36. // ODInfo
  37. //==============================================================================
  38.  
  39. interface ODInfo :  ODObject
  40. {    
  41.    
  42.    ODBoolean  ShowPartFrameInfo(in ODFacet facet, in ODBoolean allowEditing);
  43.     
  44.  
  45. #ifdef __SOMIDL__
  46.   implementation
  47.   {
  48.       functionprefix = ODInfo;
  49.     override:
  50.         somUninit;
  51.  
  52.     releaseorder:
  53.         reserved1,
  54.         ShowPartFrameInfo;
  55.         
  56.     
  57.   };
  58. #endif
  59. };
  60.  
  61. #endif
  62.  
  63.